home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / SCGRAPH / HELP.PAS < prev    next >
Pascal/Delphi Source File  |  1996-11-06  |  601b  |  38 lines

  1. unit Help;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   THelpForm = class(TForm)
  11.     Panel1: TPanel;
  12.     Image1: TImage;
  13.     Panel2: TPanel;
  14.     Button1: TButton;
  15.     HelpMemo: TMemo;
  16.     Label1: TLabel;
  17.     Label2: TLabel;
  18.     procedure Button1Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   HelpForm: THelpForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure THelpForm.Button1Click(Sender: TObject);
  33. begin
  34.   Close;
  35. end;
  36.  
  37. end.
  38.